Document Solutions for Word
GrapeCity.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / RowCollection Class / Add Method / Add(String[]) Method
An array of row cell texts. The size of the array determines the number of cells in the row.

In This Topic
    Add(String[]) Method
    In This Topic
    Adds a Row to this collection. The row is added to the end of the last table in the range.
    Syntax
    'Declaration
     
    Public Overloads Function Add( _
       ByVal ParamArray texts() As System.String _
    ) As Row
    public Row Add( 
       params System.string[] texts
    )

    Parameters

    texts
    An array of row cell texts. The size of the array determines the number of cells in the row.

    Return Value

    The adedd Row.
    See Also